home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / tiff / tif_dumpmode.c < prev    next >
C/C++ Source or Header  |  1995-06-21  |  3KB  |  112 lines

  1. /* $Header: /usr/people/sam/tiff/libtiff/RCS/tif_dumpmode.c,v 1.36 1994/09/17 23:22:37 sam Exp $ */
  2.  
  3. /*
  4.  * Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994 Sam Leffler
  5.  * Copyright (c) 1991, 1992, 1993, 1994 Silicon Graphics, Inc.
  6.  *
  7.  * Permission to use, copy, modify, distribute, and sell this software and 
  8.  * its documentation for any purpose is hereby granted without fee, provided
  9.  * that (i) the above copyright notices and this permission notice appear in
  10.  * all copies of the software and related documentation, and (ii) the names of
  11.  * Sam Leffler and Silicon Graphics may not be used in any advertising or
  12.  * publicity relating to the software without the specific, prior written
  13.  * permission of Sam Leffler and Silicon Graphics.
  14.  * 
  15.  * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
  16.  * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
  17.  * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
  18.  * 
  19.  * IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  20.  * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  21.  * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  22.  * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
  23.  * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
  24.  * OF THIS SOFTWARE.
  25.  */
  26.  
  27. /*
  28.  * TIFF Library.
  29.  *
  30.  * "Null" Compression Algorithm Support.
  31.  */
  32. #include "tiffiop.h"
  33.  
  34. /*
  35.  * Encode a hunk of pixels.
  36.  */
  37. static int
  38. DumpModeEncode(TIFF* tif, tidata_t pp, tsize_t cc, tsample_t s)
  39. {
  40.     while (cc > 0) {
  41.         tsize_t n;
  42.  
  43.         n = cc;
  44.         if (tif->tif_rawcc + n > tif->tif_rawdatasize)
  45.             n = tif->tif_rawdatasize - tif->tif_rawcc;
  46.         /*
  47.          * Avoid copy if client has setup raw
  48.          * data buffer to avoid extra copy.
  49.          */
  50.         if (tif->tif_rawcp != pp)
  51.             _TIFFmemcpy(tif->tif_rawcp, pp, n);
  52.         tif->tif_rawcp += n;
  53.         tif->tif_rawcc += n;
  54.         pp += n;
  55.         cc -= n;
  56.         if (tif->tif_rawcc >= tif->tif_rawdatasize &&
  57.             !TIFFFlushData1(tif))
  58.             return (-1);
  59.     }
  60.     return (1);
  61. }
  62.  
  63. /*
  64.  * Decode a hunk of pixels.
  65.  */
  66. static int
  67. DumpModeDecode(TIFF* tif, tidata_t buf, tsize_t cc, tsample_t s)
  68. {
  69.     if (tif->tif_rawcc < cc) {
  70.         TIFFError(tif->tif_name,
  71.             "DumpModeDecode: Not enough data for scanline %d",
  72.             tif->tif_row);
  73.         return (0);
  74.     }
  75.     /*
  76.      * Avoid copy if client has setup raw
  77.      * data buffer to avoid extra copy.
  78.      */
  79.     if (tif->tif_rawcp != buf)
  80.         _TIFFmemcpy(buf, tif->tif_rawcp, cc);
  81.     tif->tif_rawcp += cc;
  82.     tif->tif_rawcc -= cc;
  83.     return (1);
  84. }
  85.  
  86. /*
  87.  * Seek forwards nrows in the current strip.
  88.  */
  89. static int
  90. DumpModeSeek(TIFF* tif, uint32 nrows)
  91. {
  92.     tif->tif_rawcp += nrows * tif->tif_scanlinesize;
  93.     tif->tif_rawcc -= nrows * tif->tif_scanlinesize;
  94.     return (1);
  95. }
  96.  
  97. /*
  98.  * Initialize dump mode.
  99.  */
  100. int
  101. TIFFInitDumpMode(TIFF* tif)
  102. {
  103.     tif->tif_decoderow = DumpModeDecode;
  104.     tif->tif_decodestrip = DumpModeDecode;
  105.     tif->tif_decodetile = DumpModeDecode;
  106.     tif->tif_encoderow = DumpModeEncode;
  107.     tif->tif_encodestrip = DumpModeEncode;
  108.     tif->tif_encodetile = DumpModeEncode;
  109.     tif->tif_seek = DumpModeSeek;
  110.     return (1);
  111. }
  112.